Student

Undocumented in source.

Constructors

this
this(string pcName, immutable(int) pnNumClasses)
Undocumented in source.

Members

Functions

dup
Student dup()
Undocumented in source. Be warned that the author may not have intended to support it.
isValid
bool isValid()
Undocumented in source. Be warned that the author may not have intended to support it.
opCmp
int opCmp(Object o)
Undocumented in source. Be warned that the author may not have intended to support it.
opEquals
bool opEquals(Object o)
Undocumented in source. Be warned that the author may not have intended to support it.
printInfo
void printInfo()
Undocumented in source. Be warned that the author may not have intended to support it.
toString
string toString()
Undocumented in source. Be warned that the author may not have intended to support it.

Mixins

__anonymous
mixin KeyedItem!()
Undocumented in source.

Properties

cName
string cName [@property getter]
Undocumented in source. Be warned that the author may not have intended to support it.
cName
immutable(char)[] cName [@property setter]
Undocumented in source. Be warned that the author may not have intended to support it.
nNumClasses
int nNumClasses [@property getter]
Undocumented in source. Be warned that the author may not have intended to support it.
nNumClasses
immutable(int) nNumClasses [@property setter]
Undocumented in source. Be warned that the author may not have intended to support it.

Examples

auto i = new Student("Tom", 8);
assert(!i.containsChanges);
i.cName = "What";
assert(i.containsChanges);
i.markAsSaved();
assert(!i.containsChanges);

Meta